home *** CD-ROM | disk | FTP | other *** search
/ Developer Source 7 / developer source - volume 7.iso / delph / jun96 / fungf102.gif < prev    next >
Graphics Interchange Format  |  1996-11-16  |  47KB  |  373x306  |  8-bit (131 colors)
Labels: text | screenshot | font | number | document
OCR: Method Description Create Create is the thread constructor. Destroy Destroy is the thread destructor. DoTerminate DoTerminate calls the OnTerminate event handler, if one exists. DoTerminate executes as part of the thread, as opposed to OnTerminate, which executes as part of the process. It is unusual to override this method. Execute Execute is a virtual, abstract method that you over- ride to specify the thread's behavior. Do not call this method; it is automatically called by the constructor. Resume Resumes execution of a suspended thread. Suspend Suspends execution of a thread. Synchronize Synchronizes access to VCL properties or methods. Terminate Sets a flag that tells the thread to end. WaitFor Suspends execution until a specified thread is signaled. Figure 2: TThread class methods.